aboutsummaryrefslogtreecommitdiff
path: root/src/pages/create/[board]/[tid].astro
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2022-08-30 11:12:21 +0300
committerkartofen <mladenovnasko0@gmail.com>2022-08-30 11:12:21 +0300
commit298518e2fcf24c5ab168413f08ccd86570c7de6d (patch)
tree739f1534f0d9aec6844ec07a346389f3efbd26c6 /src/pages/create/[board]/[tid].astro
parent8e4163e3f08e29f38fe87c59d8cfb91e0fa98063 (diff)
minor fixes
Diffstat (limited to 'src/pages/create/[board]/[tid].astro')
-rw-r--r--src/pages/create/[board]/[tid].astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/create/[board]/[tid].astro b/src/pages/create/[board]/[tid].astro
index ccc95ca..f26c0d4 100644
--- a/src/pages/create/[board]/[tid].astro
+++ b/src/pages/create/[board]/[tid].astro
@@ -13,7 +13,7 @@ const { board, tid } = Astro.params;
<Form board={board} tid={tid}>
<form id="form" method="post" action="/create/comment" onsubmit="document.getElementById('submit-button').disabled = true">
<textarea name="CommentText" placeholder="Comment Contents" style="height: 150px; width: 350px;"></textarea>
- <br> <input id="submit-button" type="submit" value="Create Thread" />
+ <br> <input id="submit-button" type="submit" value="Create Comment" />
<input id="image" type="file" accept=".png,.jpg,.gif,.bmp,.mp4" />
</form>
</Form>